home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Monster Media 1996 #15
/
Monster Media Number 15 (Monster Media)(July 1996).ISO
/
prog_pas
/
cddk9605.zip
/
TUTOR.ZIP
/
INIT.SCR
< prev
next >
Wrap
Text File
|
1996-05-16
|
5KB
|
107 lines
; ┌─────────────────────────────────────────────────────────────────────────┐
; │ ▒▒▒ Command-Line Parameters ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ │
; └─────────────────────────────────────────────────────────────────────────┘
GetParam B, Baud ; Baud rate for the current session
GetParam C, ComPort ; Communications port
GetParam N, Node ; Node number
GetParam O, LockedBaud ; Locked baud rate
GetParam P, DropFile ; Full path and name of the drop file
LoadDropFile
InitFOSSIL
; ┌─────────────────────────────────────────────────────────────────────────┐
; │ ▒▒▒ Video Configuration ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ │
; └─────────────────────────────────────────────────────────────────────────┘
DetectANSI "~|[ansi detection]~|"
AVATARClrScrColor = 3 ; Default AVATAR clear-screen color
CheckSnow = No ; Slow down output for older monitors?
Color = 7 ; Reset current color to white on black
DBS = Yes ; Destructive backspaces?
DirectVideo = Yes ; Write directly to video RAM (faster)?
Randomize Timer
; ┌─────────────────────────────────────────────────────────────────────────┐
; │ ▒▒▒ Chat-Mode ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ │
; └─────────────────────────────────────────────────────────────────────────┘
ChatGreeting = "~FGreeting.ANS|~|"
ChatGoodbye = "|0F~|■|07 Exiting chat mode...~|~|"
ChatExecPrompt = "|07Command: "
; ChatGreeting is shown upon entry into the chat mode. ChatGoodbye is
; shown when the chat mode is terminated. ChatExecPrompt is displayed
; when the sysop enters the chat-mode command interpreter. Refer to
; SYSOP.DOC for more information.
IceChatColors
; ┌─────────────────────────────────────────────────────────────────────────┐
; │ ▒▒▒ Status Lines ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ │
; └─────────────────────────────────────────────────────────────────────────┘
Status Help, 2, "|3F Alt-C |31Chat |3FAlt-H |31Hang Up |3FAlt-X |31Exit |3FPgUp/PgDn |31Fade In/Out |3FF-10 |31Hide~CE~| {Application} {Version} ∙ {Copyright}~CE"
Status Quote, 1, "|31 What is now proved was once only imagin'd. - William Blake~CE"
Status Peter, 1, "|31 Piotr Ilich Tchaikovsky [1840 - 1893] · Rest in peace, friend...~CE"
; │ │ │
; │ │ └─ The text shown in the status line. You may use any
; │ │ variables, color codes, or control codes. Be sure to
; │ │ end the string with the ~CE control code, which erases
; │ │ the text between the cursor and the right side of the
; │ │ screen. Otherwise, you may see parts of the previous
; │ │ status line when switching lines!
; │ │
; │ └────── The size of the status line.
; │
; └─────────── A name associated with this particular status line.
; From this point on, you will always use this name
; to identify the status line. YOU MUST USE A UNIQUE
; NAME! That is, don't use the name of a command or
; variable.
; ┌─────────────────────────────────────────────────────────────────────────┐
; │ ▒▒▒ SysKeys (Function Keys) ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ │
; └─────────────────────────────────────────────────────────────────────────┘
SysKey $2E00, "Chat" ; Alt-C
SysKey $2300, "HangUp Exit 0" ; Alt-H
SysKey $3100, "LineNoise" ; Alt-N
SysKey $2D00, "Exit 0" ; Alt-X
SysKey $5100, "FadeOut" ; Page Down
SysKey $4900, "FadeIn" ; Page Up
SysKey $3B00, "ShowStatus Help" ; F1
SysKey $3C00, "ShowStatus Quote" ; F2
SysKey $3D00, "ShowStatus Peter" ; F3
SysKey $4400, "HideStatus" ; F10
; │ │
; │ └─ Command(s) to execute when the scan code is pressed
; │ on the local computer. Remote callers cannot use
; │ SysKeys.
; │
; └──────── Keyboard scan code. The door will execute the specified
; commands when the scan code is pressed on the local
; computer. Refer to SYSOP.DOC for a list of scan codes.
; ┌─────────────────────────────────────────────────────────────────────────┐
; │ ▒▒▒ Software Information ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ │
; └─────────────────────────────────────────────────────────────────────────┘
; The following variables are usually READ-ONLY. That is, you may use them
; as macros in a string or text file, but you may not be able to modify
; them. Contact the author for more information.
Application = "Bernice the Dragon"
Copyright = "Copyright 1996 David Pinch ∙ All Rights Reserved"
Version = "1.0"
Build = "960517"